From 6285ff920dfc42eb15890b8877da72aa9bae8592 Mon Sep 17 00:00:00 2001 From: Ian Campbell Date: Mon, 14 Dec 2015 16:21:31 +0000 Subject: [PATCH] xen: arm: Drop trailing ; from DEFINE_XEN_GUEST_HANDLE This is always present at the point of use, which with -pedantic provokes: error: ISO C does not allow extra ';' outside of a function [-Werror=edantic] Signed-off-by: Ian Campbell Acked-by: Stefano Stabellini Acked-by: Jan Beulich --- xen/include/public/arch-arm.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/include/public/arch-arm.h b/xen/include/public/arch-arm.h index 6322548932..870bc3b78b 100644 --- a/xen/include/public/arch-arm.h +++ b/xen/include/public/arch-arm.h @@ -173,7 +173,7 @@ typedef union { type *p; unsigned long q; } \ __guest_handle_ ## name; \ typedef union { type *p; uint64_aligned_t q; } \ - __guest_handle_64_ ## name; + __guest_handle_64_ ## name /* * XEN_GUEST_HANDLE represents a guest pointer, when passed as a field -- 2.30.2